home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / tools / czesc_3 / multiuser / src / library / locale.h < prev    next >
C/C++ Source or Header  |  1994-03-05  |  907b  |  32 lines

  1. /************************************************************
  2. * MultiUser - MultiUser Task/File Support System                *
  3. * ---------------------------------------------------------    *
  4. * Locale Routines                                                            *
  5. * ---------------------------------------------------------    *
  6. * © Copyright 1993-1994 Geert Uytterhoeven                        *
  7. * All Rights Reserved.                                                    *
  8. ************************************************************/
  9.  
  10. #include "multiuser.h"
  11.  
  12.     /*
  13.      *        Message Numbers
  14.      */
  15.  
  16. #define CATCOMP_NUMBERS
  17. #include "multiuser_locale.h"
  18.  
  19.     /*
  20.      *        Function Prototypes
  21.      */
  22.  
  23. extern void OpenLoc(struct LocaleInfo *li);
  24. extern void CloseLoc(struct LocaleInfo *li);
  25. extern STRPTR __asm GetString(register __a0 struct LocaleInfo *li,
  26.                               register __d0 ULONG id);
  27. extern STRPTR GetLocStr(LONG id);
  28.  
  29. #define GetLocS(li,id) GetString(li,id)
  30. #define GetLogStr(id) GetLocS(&muBase->LogInfo,id)
  31.  
  32.